home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / hnjalloc.h < prev    next >
Encoding:
Text File  |  2006-01-22  |  1.8 KB  |  53 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /* LibHnj is dual licensed under LGPL and MPL. Boilerplate for both
  8.  * licenses follows.
  9.  */
  10.  
  11. /* LibHnj - a library for high quality hyphenation and justification
  12.  * Copyright (C) 1998 Raph Levien
  13.  *
  14.  * This library is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU Library General Public
  16.  * License as published by the Free Software Foundation; either
  17.  * version 2 of the License, or (at your option) any later version.
  18.  *
  19.  * This library is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  22.  * Library General Public License for more details.
  23.  *
  24.  * You should have received a copy of the GNU Library General Public
  25.  * License along with this library; if not, write to the 
  26.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, 
  27.  * Boston, MA  02111-1307  USA.
  28. */
  29.  
  30. /*
  31.  * The contents of this file are subject to the Mozilla Public License
  32.  * Version 1.0 (the "MPL"); you may not use this file except in
  33.  * compliance with the MPL.  You may obtain a copy of the MPL at
  34.  * http://www.mozilla.org/MPL/
  35.  *
  36.  * Software distributed under the MPL is distributed on an "AS IS" basis,
  37.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the MPL
  38.  * for the specific language governing rights and limitations under the
  39.  * MPL.
  40.  *
  41.  */
  42. /* wrappers for malloc */
  43.  
  44. void *
  45. hnj_malloc (int size);
  46.  
  47. void *
  48. hnj_realloc (void *p, int size);
  49.  
  50. void
  51. hnj_free (void *p);
  52.  
  53.